home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / batchut / bat.zip / FULLBACK.BAT < prev    next >
DOS Batch File  |  1984-03-31  |  1KB  |  34 lines

  1. echo off
  2. . Questions?  Contact Kendall Callas, 415-821-1310.    3/31/84
  3. ASSIGN
  4. CLS
  5. echo FULLBACK   This program prepares a full backup of the hard disk
  6. echo  
  7. echo * All files on the hard disk will be copied to diskette
  8. echo  
  9. echo  
  10. echo * Several blank FORMATTED diskettes will be required 
  11. echo  
  12. echo  
  13. echo  
  14. echo . . . Checking amount of disk space used by hard disk files . . .
  15. echo  
  16. CHKDSK
  17. echo  
  18. echo * ESTIMATE THE NUMBER OF FORMATTED DISKETTES YOU'LL NEED AS FOLLOWS:
  19. echo      Determine the number of bytes in user files
  20. echo           ("xxxxxx bytes in xxx user files" -- Line 4 of the table above)
  21. echo      Divide this number by 440,000
  22. echo      Round up
  23. echo      The result is the number of *FORMATTED* diskettes you should have ready
  24. echo  
  25. echo * Time required is roughly 5 minutes to fill a diskette
  26. echo  
  27. echo * TO ABORT, hold "Ctrl" and press "C".
  28. echo  
  29. PAUSE
  30. ECHO ON
  31. CLS
  32. BACKUP C:\ A: /S
  33. echo DONE 
  34.